home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Tampa Bay Amiga Group / TBAG - Tampa Bay Amiga Group's Disk of the Month #70 (1992)(Merlin's Software - Amiganuts United)(PD)[b corrupt file].zip / TBAG - Tampa Bay Amiga Group's Disk of the Month #70 (1992)(Merlin's Software - Amiganuts United)(PD)[b corrupt file].adf / Docs / GIF_view.docs < prev    next >
Text File  |  1992-07-14  |  5KB  |  170 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.                        GIF_view  v. 4  -  March  1992
  9.  
  10.  
  11.  
  12.                               GIF images viewer
  13.  
  14.                                     plus
  15.  
  16.                              GIF to IFF converter
  17.  
  18.  
  19.  
  20.                Copyright  ©  1991,92 by Lorenzo Musto
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. GIF images viewer plus
  30. GIF to IFF converter .
  31.     GIF_view is a program allows to view all images  which  data
  32.     are organized following the GIF format as well as to convert
  33.     them into ones matching IFF standards.
  34.  
  35.     This is version  4, of it, which follows the  2  one.
  36.  
  37.     The main improvements were done to make the program more
  38.     fast and Intuition-like;  with  this goal keeped in mind
  39.     the decompression  phase were redesigned to make it more
  40.     efficient  and  then  coded in assembly.
  41.     About Intuition  compatibility I just attached the image's
  42.     bitmaps to a screen, handling as well as possible (for me)
  43.     strange situation. Besides I have introduced  an  overscan
  44.     to do nice playing with bigger than screen images.
  45.  
  46.     At this time the program isn't just a fast viewer but comes
  47.     with saving function which allows to create an IFF file.
  48.  
  49.     A  windmill signals the program's run which may be aborted
  50.     by  CTRL-C  as expected.
  51.  
  52.     All that results in a source code made-up by about thousand
  53.     lines of C code    mixed to  assembly one, allowing  to get an
  54.     high speed with a low use of memory.
  55.  
  56.     No particular hw/sw is required to run this program;
  57.     it suits well on PAL systems as well as on those NTSC.
  58.  
  59.  
  60.     This work is dedicated to my father.
  61.  
  62.  
  63. Author
  64.     Contact me for every issue about this work:
  65.  
  66.      paper:     Lorenzo  Musto
  67.                 via   A.  Cantele  11,
  68.                 35129  Padova  (Italy)
  69.  
  70.     e-mail:     maciste@alessia.dei.unipd.it      ( INTERNET )
  71.                 alessia.dei.unipd.it!argo!root      ( UUCP )
  72.  
  73.      phone:     +39 49 609356
  74.  
  75. Distribution
  76.     GIF_view is a shareware program.
  77.  
  78.     GIF_view is also a copyrighted piece of software.
  79.  
  80.     You may copy or upload archive wherever you choose  but only
  81.     complete and unchanged. You are not allowed to sell GIF_view
  82.     for profit, or include  GIF_view on a disk which is sold for
  83.     profit, without the author's (Lorenzo Musto) permission.
  84.  
  85.     If you often use it, please pay me a donation of  10 US$  or
  86.     equivalent in any cash.    Therefore  you  will get from me one
  87.     update service without the troublesome requester. Please send
  88.     money and no check.
  89.  
  90. Usage - Template
  91.     GIF_view  <filename>  [QUICK] [TIME n] [SAVE filename[.iff]]
  92.  
  93.  
  94.           QUICK   allows to gain  'speed, resolution, memory'
  95.                   but to the detriment of image's color features.
  96.  
  97.           TIME    allows to set time-out mechanism to  <n>  seconds;
  98.                   default value is twenty.
  99.  
  100.           SAVE    allows to save into file <filename> what results
  101.                   from decompression step, i.e. displayed picture,
  102.                   following IFF standards.
  103.  
  104.           --------
  105.  
  106.           KeyStrokes
  107.  
  108.             -  carriage return
  109.                          ends displaying phase.
  110.  
  111.             -  arrow keys
  112.                          scrolling.
  113.  
  114.             -  numeric keypad
  115.                 [1..4]
  116.                 [6..9]    active only with images bigger than screen they
  117.                           allow to scroll around.
  118.  
  119.                  [0]      refreshes whole display area.
  120.  
  121.                  [5]      puts screen to back.
  122.  
  123.             -   CTRL-C
  124.                           aborts execution freeing all allocated resources.
  125.  
  126.  
  127. Trademarks
  128.       GIF and 'Graphics Interchange Format' are trademarks of
  129.                        CompuServe, Incorporated.
  130.                          an H&R Block Company
  131.                       5000 Arlington Centre Blvd.
  132.                          Columbus, Ohio 43220
  133.                             (614) 457-8600
  134.  
  135.  
  136.         "ILBM" IFF Interleaved Bitmap, from Electronic Arts.
  137.        Electronic Arts[tm] is a trademark of Electronic Arts.
  138.  
  139.  
  140. History
  141.     o    may-91 version 0 but prototype.
  142.     o    aug-91 version 1
  143.     o 02-oct-91 Idiosyncrasy for B&W images removed.
  144.     o 02-oct-91 Approximation of the 'Color Map' refined.
  145.     o 04-oct-91 Fixed a bug.
  146.     o 05-oct-91 version 2.
  147.  
  148.     o    nov-91 fall into intuition: screen, overscan.
  149.     o    dec-91 optimization of code.
  150.     o    jan-92 appears assembly-code to do critical steps.
  151.     o    mar-92 set up TIME and SAVE options.
  152.     o 08-mar-92 buffered output on writing IFF destination file.
  153.     o 10-mar-92 version 4.
  154. _______________________________________________________________________________
  155. ===============================================================================
  156.